check if current time is in the morning c#

48

check if current time is in the morning c# -

TimeSpan time = DateTime.Now.TimeOfDay;

if (time > new TimeSpan(00, 00, 01)        //Hours, Minutes, Seconds
 && time < new TimeSpan(08, 00, 00)) {
    //match found
}

Comments

Submit
0 Comments